home *** CD-ROM | disk | FTP | other *** search
/ Erotic Games: Memory / Erotic Games: Memory.iso / mac / air_installers / AdobeAIR.exe / setup.swf / scripts / mx / controls / ButtonLabelPlacement.as < prev    next >
Text File  |  2009-02-12  |  556b  |  27 lines

  1. package mx.controls
  2. {
  3.    import mx.core.mx_internal;
  4.    
  5.    use namespace mx_internal;
  6.    
  7.    public final class ButtonLabelPlacement
  8.    {
  9.       
  10.       public static const TOP:String = "top";
  11.       
  12.       public static const LEFT:String = "left";
  13.       
  14.       mx_internal static const VERSION:String = "3.0.0.0";
  15.       
  16.       public static const BOTTOM:String = "bottom";
  17.       
  18.       public static const RIGHT:String = "right";
  19.        
  20.       
  21.       public function ButtonLabelPlacement()
  22.       {
  23.          super();
  24.       }
  25.    }
  26. }
  27.